home *** CD-ROM | disk | FTP | other *** search
- /* User Biographies v1.1 By Instigist, Snake Pit BBS 310-863-3754 */
-
- options results
- BBSIDENTIFY USER
- temp = result
- parse var temp '"'id'" "'locat'" 'ans
- id = upper(id)
- if exists('doors:bios/'id) then call oldbio
- biofile:
- print " "
- print "Filling Out User Biography For "id"..."
- print " "
- prompt 60 'NORMAL' 'Computer Setup(1 line): '
- compset = result
- prompt 60 'NORMAL' 'Hobbies(1 line): '
- hobbies = result
- print "You Have 5 Lines To Describe Yourself For The Other Users:"
- do i = 1 to 5
- prompt 75 'NORMAL' ''i'>'
- desc.i = result
- end
- do i = 1 to 5
- if desc.i = 'RESULT' then desc.i = ''
- end
- print " "
- print "Writing Biography..."
- open(file,'doors:bios/'id,'W')
- writeln(file,'Handle :'id)
- writeln(file,'Location :'locat)
- writeln(file,'Computer :'compset)
- writeln(file,'Hobbies :'hobbies)
- writeln(file,'')
- do i = 1 to 5
- writeln(file,desc.i)
- end
- print " "
- prompt 1 'YESNO' 'Would You Like To View Other Bios(Y/n)? '
- ans = result
- if ans = '###PANIC' then call death
- if ans = 'N' then call outbios
- oldbio:
- print " "
- prompt 20 'NORMAL' 'View Which Users Biography? '
- ans = upper(result)
- if exists('doors:bios/'ans) then call viewbio
- print ''
- print 'That User Doesnt Exist/Hasnt Filed A Biography...'
- call outbios
- viewbio:
- SENDFILE 'doors:bios/'ans
- outbios:
- print ""
- prompt 1 'NOYES' 'Would You Like To Re-Edit Your Bio(y/N)? '
- ans = upper(result)
- if ans = 'Y' then call biofile
- death:
- exit
-